boot.js ➔ ???   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
rs 10
cc 1
nc 1
nop 1
1
import Vue from 'vue';
2
Vue.config.productionTip = false;
3
4
// register global components
5
import components from './components/global';
6
Object.keys(components).forEach(tag => Vue.component(tag, components[tag]));
7
8
// register global filters
9
import filters from './filters/global';
10
Object.keys(filters).forEach(tag => Vue.filter(tag, filters[tag]));
11